home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 108 / MacAddict108.iso / Software / Internet & Communication / WordPress 1.5.1.dmg / wordpress / wp-content / themes / classic / sidebar.php < prev    next >
Encoding:
PHP Script  |  2005-02-02  |  1.6 KB  |  44 lines

  1.  
  2. <!-- begin sidebar -->
  3. <div id="menu">
  4.  
  5. <ul>
  6.     <?php wp_list_pages(); ?>
  7.     <?php get_links_list(); ?>
  8.  <li id="categories"><?php _e('Categories:'); ?>
  9.     <ul>
  10.     <?php wp_list_cats(); ?>
  11.     </ul>
  12.  </li>
  13.  <li id="search">
  14.    <label for="s"><?php _e('Search:'); ?></label>    
  15.    <form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
  16.     <div>
  17.         <input type="text" name="s" id="s" size="15" /><br />
  18.         <input type="submit" value="<?php _e('Search'); ?>" />
  19.     </div>
  20.     </form>
  21.  </li>
  22.  <li id="archives"><?php _e('Archives:'); ?>
  23.      <ul>
  24.      <?php wp_get_archives('type=monthly'); ?>
  25.      </ul>
  26.  </li>
  27.  <li id="meta"><?php _e('Meta:'); ?>
  28.      <ul>
  29.         <?php wp_register(); ?>
  30.         <li><?php wp_loginout(); ?></li>
  31.         <li><a href="feed:<?php bloginfo('rss2_url'); ?>" title="<?php _e('Syndicate this site using RSS'); ?>"><?php _e('<abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  32.         <li><a href="feed:<?php bloginfo('comments_rss2_url'); ?>" title="<?php _e('The latest comments to all posts in RSS'); ?>"><?php _e('Comments <abbr title="Really Simple Syndication">RSS</abbr>'); ?></a></li>
  33.         <li><a href="http://validator.w3.org/check/referer" title="<?php _e('This page validates as XHTML 1.0 Transitional'); ?>"><?php _e('Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr>'); ?></a></li>
  34.         <li><a href="http://gmpg.org/xfn/"><abbr title="XHTML Friends Network">XFN</abbr></a></li>
  35.         <li><a href="http://wordpress.org/" title="<?php _e('Powered by WordPress, state-of-the-art semantic personal publishing platform.'); ?>"><abbr title="WordPress">WP</abbr></a></li>
  36.         <?php wp_meta(); ?>
  37.     </ul>
  38.  </li>
  39.  
  40. </ul>
  41.  
  42. </div>
  43. <!-- end sidebar -->
  44.